home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 April / CHIP CD (4 - 2007).iso / beeld / 3d / ArtOfIllusion24-Mac.dmg / Art of Illusion / ArtOfIllusion.jar / bsh / commands / mv.bsh < prev    next >
Text File  |  2005-05-23  |  228b  |  14 lines

  1. /**
  2.     Rename a file (like Unix mv).
  3. */
  4.  
  5. bsh.help.mv = "usage: mv( fromFile, toFile )";
  6.  
  7. mv( String fromFile, String toFile ) 
  8. {
  9.     this.from = pathToFile( fromFile );
  10.     this.to = pathToFile( toFile );
  11.     from.renameTo( to );
  12. }
  13.  
  14.